<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/meson.git/test cases, branch python35</title>
<subtitle>github.com: mesonbuild/meson.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/'/>
<entry>
<title>Merge pull request #2856 from jon-turney/warning-location</title>
<updated>2018-01-03T20:32:40+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2018-01-03T20:32:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=65f78a722ad0f8ab260e7cf24636ef38e8bd957f'/>
<id>65f78a722ad0f8ab260e7cf24636ef38e8bd957f</id>
<content type='text'>
Consolidate warning location formatting</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Consolidate warning location formatting</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2838 from mesonbuild/nirbheek/consolidate-subproject-dep-checking</title>
<updated>2018-01-02T18:35:19+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2018-01-02T18:35:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=ad54bc372694cf7fc6e173e41c56418651aac9f0'/>
<id>ad54bc372694cf7fc6e173e41c56418651aac9f0</id>
<content type='text'>
intrp: Consolidate subproject dep checking and logging</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
intrp: Consolidate subproject dep checking and logging</pre>
</div>
</content>
</entry>
<entry>
<title>Use location formatting in mlog.warning() for invalid kwarg warning</title>
<updated>2018-01-01T13:21:01+00:00</updated>
<author>
<name>Jon Turney</name>
<email>jon.turney@dronecode.org.uk</email>
</author>
<published>2017-12-31T17:33:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=bcc95d7dd703779228ec81b92197e010d0e5a1ea'/>
<id>bcc95d7dd703779228ec81b92197e010d0e5a1ea</id>
<content type='text'>
This already reports the location (in a slightly different format), but
using mlog.warning() will make it easier if we want to change the location
format in future.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This already reports the location (in a slightly different format), but
using mlog.warning() will make it easier if we want to change the location
format in future.
</pre>
</div>
</content>
</entry>
<entry>
<title>Wire up locations in a couple more warnings</title>
<updated>2018-01-01T13:21:00+00:00</updated>
<author>
<name>Jon Turney</name>
<email>jon.turney@dronecode.org.uk</email>
</author>
<published>2017-12-31T17:16:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=f85fde743a292e24c9aed81c23f6af466054aee3'/>
<id>f85fde743a292e24c9aed81c23f6af466054aee3</id>
<content type='text'>
These are the remaining warnings in the parser, where we have the location
to hand.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These are the remaining warnings in the parser, where we have the location
to hand.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2852 from jon-turney/warning-location</title>
<updated>2018-01-01T00:09:45+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2018-01-01T00:09:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=f2b33b8dcba7e8d948982cfb682e003d57e0f696'/>
<id>f2b33b8dcba7e8d948982cfb682e003d57e0f696</id>
<content type='text'>
Add filename and lineno to duplicate kwargs warning</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add filename and lineno to duplicate kwargs warning</pre>
</div>
</content>
</entry>
<entry>
<title>intrp: Consolidate subproject dep checking and logging</title>
<updated>2017-12-31T19:44:03+00:00</updated>
<author>
<name>Nirbheek Chauhan</name>
<email>nirbheek@centricular.com</email>
</author>
<published>2017-12-28T00:58:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=851475db9b8772930276a29320a14714d3a4da92'/>
<id>851475db9b8772930276a29320a14714d3a4da92</id>
<content type='text'>
If a dep is not found on the system and a fallback is specified, we
have two cases:

1. Look for the dependency in a pre-initialized subproject
2. Initialize the subproject and look for the dependency

Both these require version comparing, ensuring the fetched variable
is a dependency, and printing a success message, erroring out, etc.

Now we share the relevant code instead of duplicating it. It already
diverged, so this is a good thing.

As a side-effect, we now log fallback dependencies in the same format
as system dependencies:

    Dependency libva found: YES
    Dependency libva found: YES (cached)

    Dependency glib-2.0 from subproject subprojects/glib found: YES
    Dependency glib-2.0 from subproject subprojects/glib found: YES (cached)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a dep is not found on the system and a fallback is specified, we
have two cases:

1. Look for the dependency in a pre-initialized subproject
2. Initialize the subproject and look for the dependency

Both these require version comparing, ensuring the fetched variable
is a dependency, and printing a success message, erroring out, etc.

Now we share the relevant code instead of duplicating it. It already
diverged, so this is a good thing.

As a side-effect, we now log fallback dependencies in the same format
as system dependencies:

    Dependency libva found: YES
    Dependency libva found: YES (cached)

    Dependency glib-2.0 from subproject subprojects/glib found: YES
    Dependency glib-2.0 from subproject subprojects/glib found: YES (cached)
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2757 from xclaesse/pkgconfig</title>
<updated>2017-12-31T17:11:57+00:00</updated>
<author>
<name>Jussi Pakkanen</name>
<email>jpakkane@gmail.com</email>
</author>
<published>2017-12-31T17:11:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=dd3f49af0d8c94033e6db68b25c23ea9e63e9c5c'/>
<id>dd3f49af0d8c94033e6db68b25c23ea9e63e9c5c</id>
<content type='text'>
pkgconfig: Allow passing Dependency objects to library(_private)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pkgconfig: Allow passing Dependency objects to library(_private)</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test cases/windows/5 resources</title>
<updated>2017-12-31T17:11:34+00:00</updated>
<author>
<name>Jon Turney</name>
<email>jon.turney@dronecode.org.uk</email>
</author>
<published>2017-12-30T15:44:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=500c39cb07d21aa6857e204f6689d324afd758c4'/>
<id>500c39cb07d21aa6857e204f6689d324afd758c4</id>
<content type='text'>
Currently, this test only tries to load a predefined icon, so the resource
compilation and linking can be completely removed from the meson.build and
it still passes.

Change to try to load the icon contained in the resources we compile.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, this test only tries to load a predefined icon, so the resource
compilation and linking can be completely removed from the meson.build and
it still passes.

Change to try to load the icon contained in the resources we compile.
</pre>
</div>
</content>
</entry>
<entry>
<title>Append warning location to warning output by warning()</title>
<updated>2017-12-30T20:10:15+00:00</updated>
<author>
<name>Jon Turney</name>
<email>jon.turney@dronecode.org.uk</email>
</author>
<published>2017-12-30T18:53:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=ad5cc2ce5523d38578e9ca19179687434d050f3d'/>
<id>ad5cc2ce5523d38578e9ca19179687434d050f3d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a test case for location in duplicate kwarg warning</title>
<updated>2017-12-30T20:08:35+00:00</updated>
<author>
<name>Jon Turney</name>
<email>jon.turney@dronecode.org.uk</email>
</author>
<published>2017-12-30T18:34:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/meson.git/commit/?id=dd1de073f4c9e643090b1cfdcbfb6b25bbd9dc49'/>
<id>dd1de073f4c9e643090b1cfdcbfb6b25bbd9dc49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
